* lisp/simple.el (read-extended-command): Add a comment.
(complete-with-action action obarray string pred)))
(lambda (sym)
(and (commandp sym)
+ ;;; FIXME: This should also be possible to disable by
+ ;;; the user, but I'm not quite sure what the right
+ ;;; design for that would look like.
(if (get sym 'completion-predicate)
(funcall (get sym 'completion-predicate) sym buffer)
(funcall read-extended-command-predicate sym buffer))))